home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib9 / v_11_09 / 1109103a < prev    next >
Encoding:
Text File  |  1995-11-01  |  158 b   |  17 lines

  1. void f()
  2.     {
  3.     class X
  4.         {
  5.     public:
  6.         X(int i) { n = i; }
  7.         operator int() { return n; }
  8.         // ...
  9.     private:
  10.         int n;
  11.         // ...
  12.         };
  13.     // ...
  14.     }
  15.  
  16.  
  17.